From 3def61254189a16c69bc52b41d59c8470ce33d18 Mon Sep 17 00:00:00 2001 From: Sascha Steinbiss Date: Tue, 17 Mar 2026 15:23:03 +0100 Subject: [PATCH] do not clean vendor directory on distclean Bug-Debian: https://bugs.debian.org/915154 Last-Update: 2025-07-11 dh_auto_clean calls make distclean, which in the case of Suricata also removes the vendor directory. This breaks repeated builds. Gbp-Pq: Name fix-repeated-builds.patch --- rust/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/Makefile.am b/rust/Makefile.am index 7bb37c60..9b0a2a1a 100644 --- a/rust/Makefile.am +++ b/rust/Makefile.am @@ -103,7 +103,7 @@ clean-local: rm -rf target gen distclean-local: - rm -rf vendor dist + rm -rf dist check-bindgen-bindings: if HAVE_BINDGEN -- 2.30.2